| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- import React from 'react';
- import {
- NextPage, GetServerSideProps, GetServerSidePropsContext,
- } from 'next';
- import { useTranslation } from 'next-i18next';
- import { serverSideTranslations } from 'next-i18next/serverSideTranslations';
- import { useRouter } from 'next/router';
- import { NoLoginLayout } from '~/components/Layout/NoLoginLayout';
- import {
- CommonProps, getServerSideCommonProps, getNextI18NextConfig,
- } from '~/pages/utils/commons';
- import {
- useCsrfToken,
- useCurrentPathname,
- } from '~/stores/context';
- type Props = CommonProps;
- const LoginPage: NextPage<CommonProps> = (props: CommonProps) => {
- // commons
- useCsrfToken(props.csrfToken);
- const { t } = useTranslation();
- const router = useRouter();
- const { message } = router.query;
- // page
- useCurrentPathname(props.currentPathname);
- const classNames: string[] = ['login-page'];
- let loginErrorElm;
- const renderResistrationSuccessFul = () => {
- return (
- <>
- <div className="alert alert-warning">
- <h2>{ t('login.registration_successful') }</h2>
- </div>
- <p>Wait for approved by administrators.</p>
- </>
- );
- };
- const renderSuspendedUserError = () => {
- return (
- <>
- <div className="alert alert-warning">
- <h2>{ t('login.sign_in_error') }</h2>
- </div>
- <p>This account is suspended.</p>
- </>
- );
- };
- const renderPasswordResetOrderError = () => {
- return (
- <>
- <div className="alert alert-warning mb-3">
- <h2>{ t('forgot_password.incorrect_token_or_expired_url') }</h2>
- </div>
- <a href="/forgot-password" className="link-switch">
- <i className="icon-key"></i> { t('forgot_password.forgot_password') }
- </a>
- </>
- );
- };
- const renderDefaultLoginError = () => {
- return (
- <div className="alert alert-warning">
- <h2>{ t('login.sign_in_error') }</h2>
- </div>
- );
- };
- switch (message) {
- case 'registered':
- loginErrorElm = () => renderResistrationSuccessFul();
- break;
- case 'suspended':
- loginErrorElm = () => renderSuspendedUserError();
- break;
- case 'password-reset-order':
- loginErrorElm = () => renderPasswordResetOrderError();
- break;
- default:
- loginErrorElm = () => renderDefaultLoginError();
- }
- return (
- <NoLoginLayout className={classNames.join(' ')}>
- <div className="mb-4 login-form-errors text-center">
- <div className='noLogin-dialog mx-auto'>
- <div className="col-12">
- {loginErrorElm()}
- </div>
- {/* If the transition source is "/login", use <a /> tag since the transition will not occur if next/link is used. */}
- <a href='/login'>
- <i className="icon-login mr-1" />{t('Sign in is here')}
- </a>
- </div>
- </div>
- </NoLoginLayout>
- );
- };
- /**
- * for Server Side Translations
- * @param context
- * @param props
- * @param namespacesRequired
- */
- async function injectNextI18NextConfigurations(context: GetServerSidePropsContext, props: Props, namespacesRequired?: string[] | undefined): Promise<void> {
- const nextI18NextConfig = await getNextI18NextConfig(serverSideTranslations, context, namespacesRequired);
- props._nextI18Next = nextI18NextConfig._nextI18Next;
- }
- export const getServerSideProps: GetServerSideProps = async(context: GetServerSidePropsContext) => {
- const result = await getServerSideCommonProps(context);
- // check for presence
- // see: https://github.com/vercel/next.js/issues/19271#issuecomment-730006862
- if (!('props' in result)) {
- throw new Error('invalid getSSP result');
- }
- const props: Props = result.props as Props;
- await injectNextI18NextConfigurations(context, props, ['translation']);
- return {
- props,
- };
- };
- export default LoginPage;
|